Skip to main content

fetchForAppointmentUuid

fetchForAppointmentUuid

Path Parameters
    appointment_uuid string required

    appointment_uuid

Header Parameters
    authorization string required

    authorization

Request Body required

request

    dealerDepartmentUuidList string[]
    requesterUserUuid string
Responses

OK


Schema
    apptReminderDtos object[]
  • Array [
  • appointmentUuid string
    remarks string
    reminderTime string
    status string

    Possible values: [TEXT_SENT, TEXT_FAILED, EMAIL_SENT, EMAIL_FAILED]

    uuid string
  • ]
  • error object
    code string
    description string
    metadata object
    property name* string
    statusCode int32
    warnings object[]
  • Array [
  • code string
    description string
  • ]
POST /appointment-reminder/appointment/:appointment_uuid/list

Request

Base URL
//api.mykaarma.com/mobile-service
appointment_uuid — path required
authorization — header required
Body required
{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}
curl / cURL
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment-reminder/appointment/:appointment_uuid/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'